Namespaces

Types in MathNet.Numerics.Statistics.Mcmc

Type McmcSampler<T>

Namespace MathNet.Numerics.Statistics.Mcmc

The interface which every sampler must implement.

Methods

Properties

Public Methods

bool Equals(object obj)

int GetHashCode()

Type GetType()

T Sample()

Returns one sample.

T[] Sample(int n)

Returns a number of samples.
Parameters
int n

The number of samples we want.

Return
T[]

An array of samples.

string ToString()

Public Properties

double AcceptanceRate get;

Gets the acceptance rate of the sampler.

Random RandomSource get; set;

Gets or sets the random number generator.